home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / sbin / cracklib-format < prev    next >
Text File  |  2005-10-13  |  236b  |  13 lines

  1. #!/bin/sh
  2. #
  3. # This preprocesses a set of word lists into a suitable form for input
  4. # into cracklib-packer
  5. #
  6. gzip -cdf $* |
  7.     tr '[A-Z]' '[a-z]' |
  8.     tr -cd '\012[a-z][0-9]' |
  9.     sort |
  10.     uniq |
  11.     grep -v '^#' |
  12.     grep -v '^$'
  13.